home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / src / _todo.c next >
Text File  |  1993-12-06  |  4KB  |  96 lines

  1. /**
  2.  ** _TODO.C
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "grx.h"
  25. #include "mousex.h"
  26. #include <stdio.h>
  27.  
  28. #ifdef  __TURBOC__
  29. #pragma warn -par
  30. #endif
  31.  
  32.  
  33. /* ================================================================== */
  34. /*           PATTERNED DRAWING AND FILLING PRIMITIVES              */
  35. /* ================================================================== */
  36.  
  37. GrPattern *GrLoadBitmap(char *filename,int fg,int bg) { return(NULL); }
  38. GrPattern *GrLoadPixmap(char *filename,GrColorTableP colors) { return(NULL); }
  39. GrPattern *GrLoadIcon(char *filename) { return(NULL); }
  40.  
  41.  
  42.  
  43. /* ================================================================== */
  44. /*         DRAWING IN USER WINDOW COORDINATES              */
  45. /* ================================================================== */
  46.  
  47. void    GrUsrCircleArc(int xc,int yc,int r,int start,int end,int c) {}
  48. void    GrUsrEllipseArc(int xc,int yc,int xa,int ya,int start,int end,int c) {}
  49. void    GrUsrPolyLine(int numpts,int points[][2],int c) {}
  50. void    GrUsrPolygon(int numpts,int points[][2],int c) {}
  51.  
  52. void    GrUsrFilledCircleArc(int xc,int yc,int r,int start,int end,int c) {}
  53. void    GrUsrFilledEllipseArc
  54.     (int xc,int yc,int xa,int ya,int start,int end,int c) {}
  55. void    GrUsrFilledPolygon(int numpts,int points[][2],int c) {}
  56.  
  57. void    GrUsrCustomLine(int x1,int y1,int x2,int y2,GrLineOption *o) {}
  58. void    GrUsrCustomBox(int x1,int y1,int x2,int y2,GrLineOption *o) {}
  59. void    GrUsrCustomCircle(int xc,int yc,int r,GrLineOption *o) {}
  60. void    GrUsrCustomEllipse(int xc,int yc,int xa,int ya,GrLineOption *o) {}
  61. void    GrUsrCustomCircleArc
  62.     (int xc,int yc,int r,int start,int end,GrLineOption *o) {}
  63. void    GrUsrCustomEllipseArc
  64.     (int xc,int yc,int xa,int ya,int start,int end,GrLineOption *o) {}
  65. void    GrUsrCustomPolyLine(int numpts,int points[][2],GrLineOption *o) {}
  66. void    GrUsrCustomPolygon(int numpts,int points[][2],GrLineOption *o) {}
  67.  
  68. void    GrUsrPatternedLine(int x1,int y1,int x2,int y2,GrLinePattern *lp) {}
  69. void    GrUsrPatternedBox(int x1,int y1,int x2,int y2,GrLinePattern *lp) {}
  70. void    GrUsrPatternedCircle(int xc,int yc,int r,GrLinePattern *lp) {}
  71. void    GrUsrPatternedEllipse(int xc,int yc,int xa,int ya,GrLinePattern *lp) {}
  72. void    GrUsrPatternedCircleArc
  73.     (int xc,int yc,int r,int start,int end,GrLinePattern *lp) {}
  74. void    GrUsrPatternedEllipseArc
  75.     (int xc,int yc,int xa,int ya,int start,int end,GrLinePattern *lp) {}
  76. void    GrUsrPatternedPolyLine(int numpts,int points[][2],GrLinePattern *lp) {}
  77. void    GrUsrPatternedPolygon(int numpts,int points[][2],GrLinePattern *lp) {}
  78.  
  79. void    GrUsrPatternFilledPlot(int x,int y,GrPattern *p) {}
  80. void    GrUsrPatternFilledLine(int x1,int y1,int x2,int y2,GrPattern *p) {}
  81. void    GrUsrPatternFilledBox(int x1,int y1,int x2,int y2,GrPattern *p) {}
  82. void    GrUsrPatternFilledCircle(int xc,int yc,int r,GrPattern *p) {}
  83. void    GrUsrPatternFilledEllipse(int xc,int yc,int xa,int ya,GrPattern *p) {}
  84. void    GrUsrPatternFilledCircleArc
  85.     (int xc,int yc,int r,int start,int end,GrPattern *p) {}
  86. void    GrUsrPatternFilledEllipseArc
  87.     (int xc,int yc,int xa,int ya,int start,int end,GrPattern *p) {}
  88. void    GrUsrPatternFilledPolygon(int numpts,int points[][2],GrPattern *p) {}
  89.  
  90. /*
  91.  * FROM "mousex.h":
  92.  */
  93. GrCursor *GrLoadCursor(char *fname,GrColorTableP colors) { return(NULL); }
  94.  
  95.  
  96.